94700deb5041655e193f62605bffeb438b021e0a,src/com/opencms/workplace/CmsAdminModuleExport.java,CmsAdminModuleExport,getContent,#CmsObject#String#String#Hashtable#String#,74
Before Change
cms.readFileHeader(resourcen[0]);
}
catch(CmsException e) {
System.err.println("error exporting module: couldn't add " + resourcen[0] + " to Module\n" + "You dont have this module in this project!");
return startProcessing(cms, templateDocument, elementName, parameters, "done");
}
After Change
}
catch(CmsException e) {
if(A_OpenCms.isLogging() && I_CmsLogChannels.C_PREPROCESSOR_IS_LOGGING) {
A_OpenCms.log(I_CmsLogChannels.C_MODULE_DEBUG,
"error exporting module: couldn't add " + resourcen[0]
+ " to Module\n" + "You dont have this module in this project!");
}
return startProcessing(cms, templateDocument, elementName, parameters, "done");
}